home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FishMarket 1.0
/
FishMarket v1.0.iso
/
fishies
/
301-325
/
disk_313
/
uucp
/
uucp1.lzh
/
src
/
include
/
pwd.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-01-10
|
540b
|
27 lines
/*
* PWD.H
*
* (C) Copyright 1989-1990 by Matthew Dillon, All Rights Reserved.
*/
struct passwd {
char *pw_name;
char *pw_passwd;
long pw_uid;
long pw_gid;
long pw_quota;
char *pw_comment;
char *pw_gecos;
char *pw_dir;
char *pw_shell;
char *pw_shell_arg0; /* arg0 broken out from pw_shell */
char *pw_shell_argn; /* remaining args from pw_shell */
};
extern struct passwd *getpwuid();
extern struct passwd *getpwnam();
extern char *PasswdFile;